home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Sources / Views / PedView.cc next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  812 b   |  83 lines

  1. /*    ==========
  2.  *    PedView.cc
  3.  *    ==========
  4.  */
  5.  
  6. #include "PedestalDebugging.h"
  7.  
  8. #include "PedView.hh"
  9.  
  10. #include "PedPane.hh"
  11.  
  12. //UPedNullView gNullView;
  13.  
  14. PedView::PedView()
  15. {
  16. }
  17.  
  18. PedView::~PedView()
  19. {
  20.     //mSuperView.release();
  21. }
  22.  
  23. void
  24. PedView::GetWindowToFrameOffset(Point &outOffset)
  25. {
  26.     SetPt(&outOffset, 0, 0);
  27. }
  28.  
  29. void
  30. PedView::GetWindowToLocalOffset(Point &outOffset)
  31. {
  32.     GetWindowToFrameOffset(outOffset);
  33. }
  34.  
  35. void
  36. PedView::Focus()
  37. {
  38.     // FIXME
  39. }
  40.  
  41. void
  42. PedView::Activate()
  43. {
  44. }
  45.  
  46. void
  47. PedView::Deactivate()
  48. {
  49. }
  50.  
  51. void
  52. PedView::Refresh()
  53. {
  54.     
  55. }
  56.  
  57. void
  58. PedView::DrawContent()
  59. {
  60.     //Draw();
  61. }
  62.  
  63. void
  64. PedView::Resize(short inWidth, short inHeight)
  65. {
  66. }
  67.  
  68. void
  69. PedView::DispatchNullEvent(EventRecord &inEvent)
  70. {
  71.     
  72. }
  73.  
  74. void
  75. PedView::DispatchClickEvent(EventRecord &inEvent)
  76. {
  77. }
  78.  
  79. void
  80. PedView::DispatchKey(EventRecord &inEvent)
  81. {
  82. }
  83.